
[DEPRECATED: Use DELETE /manage/v2/clusters/{id|name}/dynamic-hosts/{host-id} instead.]
This resource permanently removes a list of dynamic hosts from the cluster by accepting host IDs in the request body.
| URL Parameters | |
|---|---|
| format | The format of the posted data. Can be either
html, json, or xml (default). This value overrides
the Accept header if both are present. |
Upon success, a status code of 204 (No Content) is returned.
If the payload is malformed or the cluster does not exist, a status code of 400 (Bad Request) is returned.
A status code of 401 (Unauthorized) is returned if the user does not have the necessary privileges.
manage-admin role, or the following
privileges: http://marklogic.com/xdmp/privileges/manage-adminhttp://marklogic.com/xdmp/privileges/remove-dynamic-hosts If the request targets a foreign cluster, a status code of 404 (Not Found) is returned.
curl --anyauth --user admin:admin -i -X DELETE localhost:8002/manage/v2/clusters/Default/dynamic-hosts \
-H "Accept: application/json" -H "Content-Type: application/json" \
-d '{"dynamic-hosts":{"dynamic-host":["1296305934213283070", "16944064802357544651"]}}'